RyuGod
Programming Language Collector
Hello, World!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
    AspectJ: Hello, World!
*/
public class Main {
    public void sayHello() {
        System.out.println("Hello, World!");
    }
    /**
     * Test method: run time discovery can be intercepted
     *
     * @param args
     */
    public static void main(String[] args) {
        Main hello = new Main();
        hello.sayHello();
    }
}
Enter to Rename, <Shift>+Enter to Preview
TerminalInput valueWebOutput
W